home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
TeX 1995 July
/
TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO
/
macros
/
lollipop
/
trace.tex
< prev
Wrap
Text File
|
1993-01-28
|
1KB
|
46 lines
% Trace.tex copyright 1992 Victor Eijkhout
%
\Chapter[chap:tracing] Tracing
\Section Do you really want to see this?
You can get glimpses of Lollipop's internal workings by enabling some
of the internal traces. The extreme positions
\Ver> \Trace:yes<Rev
and
\Ver> \Trace:no<Rev
cause all trace information and no trace at all respectively to be
generated. You may find this trace interesting, or it may dumbfound you.
Of course, if your name is Victor you find it pretty useful.
The following traces are available:
\Ver> \NewTrace:def % definition of user constructs
\NewTrace:ref % cross references
\NewTrace:ext % external files
\NewTrace:doc % document structure
\NewTrace:font % font loading
\NewTrace:out % output routine
\NewTrace:indent % indentation control
\NewTrace:gen % general tools<Rev
\ImpNote
Trace messages are generated by calls to
\Ver> \Tmessage[type]{text}<Rev
Setting
\Ver> \Trace:no<Rev
defines \cs{Tmessage} to discard its arguments. This is the most
efficient way of generating no trace information.
Tracing is controlled by a global parameter \cs{trace@all}.
A value of~$-1$
disables all tracing; $+1$~corresponds to all tracing on; $0$~gives
selective tracing. In the third case a call
\Ver> \Trace:xyz<Rev
set \ver>\trace:xyz> positive so that only
\ver>\Tmessage[xyz]{...}> calls will
produce output. Enabling a selective trace sets \cs{trace@all} to zero, in
case it was~$-1$.
\ImpNoteStop